home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Euroscene 2
/
Euroscene 2.iso
/
USEFUL
/
Install AmigaGuide
< prev
next >
Wrap
Text File
|
1995-11-01
|
1KB
|
53 lines
; amigaguide Installer script. © THP/c!truS'95
; drugs/alcohol/pain/adrenalin. there must be other ways outta here.
; /******************************************************************************/
; Uh?
(set #copying-amigaguidelib "Copying AmigaGuide.library to LIBS:")
(set #copying-amigaguide "Copying AmigaGuide to sys:Utilities/")
(set #copying-amigaguidehelp "Copying Help.Guide to s:")
; /******************************************************************************/
; Enough kacking around, let's GO!
(copylib
(prompt "\n" #copying-amigaguidelib)
(help @copylib-help)
(source "libs/amigaguide.library")
(dest "libs:")
(confirm)
)
(copylib
(prompt "\n" #copying-amigaguide)
(help @copylib-help)
(source "utilities/Amigaguide")
(dest "sys:Utilities/")
(infos)
(confirm)
)
(copylib
(prompt "\n" #copying-amigaguidehelp)
(help @copylib-help)
(source "s/Help.Guide")
(dest "s:")
(infos)
(confirm)
)
(message "\nThe Amigaguide system for hypertext support has now been installed.")
(exit (quiet))